Function Reference

_Now

Returns the current Date and Time in PC's format.

#Include <Date.au3>
_Now()

 

Parameters

None.

 

Return Value

Returns the current Date and Time in PC's format

 

Remarks

If Date format isn't found in the registry it returns the date in the mm/dd/yyyy format.
If Time format isn't found in the registry it returns the time in the hh:mm:ss format.

 

Related

None.

 

Example


#include <Date.au3>

MsgBox( 4096, "", "Todays date/Time: " & _Now() )